home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Apple Game Sprockets / More Sprocket Examples 1.0 / DroneZone Sources / DZThumbprint.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-12  |  329 b   |  17 lines  |  [TEXT/CWIE]

  1. /*
  2.  *    File:        DZThumbprint.h
  3.  *
  4.  *    Copyright © 1996 Apple Computer, Inc.
  5.  */
  6.  
  7. #ifndef __DZThumbprint__
  8. #define __DZThumbprint__
  9.  
  10. typedef enum TThumbprint {
  11.     kThumbprint_Dead        = 'dead',
  12.     kThumbprint_SelfDrone    = 'self',
  13.     kThumbprint_AutoDrone    = 'auto',
  14.     kThumbprint_BulletDrone    = 'bllt'
  15. } TThumbprint;
  16.  
  17. #endif /* __DZThumbprint__ */